+2001-11-01 Havoc Pennington <hp@pobox.com>
+
+ * gtk/gtktext.c (gtk_text_set_position): handle -1 argument in
+ order to remove a workaround in Nautilus that forced
+ GTK_ENABLE_BROKEN
+
+ * gtk/gtkwidget.c (gtk_widget_modify_style): fix typos in the docs
+
Thu Nov 1 20:09:31 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkrange.c: Patch from George Lebl to
+2001-11-01 Havoc Pennington <hp@pobox.com>
+
+ * gtk/gtktext.c (gtk_text_set_position): handle -1 argument in
+ order to remove a workaround in Nautilus that forced
+ GTK_ENABLE_BROKEN
+
+ * gtk/gtkwidget.c (gtk_widget_modify_style): fix typos in the docs
+
Thu Nov 1 20:09:31 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkrange.c: Patch from George Lebl to
+2001-11-01 Havoc Pennington <hp@pobox.com>
+
+ * gtk/gtktext.c (gtk_text_set_position): handle -1 argument in
+ order to remove a workaround in Nautilus that forced
+ GTK_ENABLE_BROKEN
+
+ * gtk/gtkwidget.c (gtk_widget_modify_style): fix typos in the docs
+
Thu Nov 1 20:09:31 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkrange.c: Patch from George Lebl to
+2001-11-01 Havoc Pennington <hp@pobox.com>
+
+ * gtk/gtktext.c (gtk_text_set_position): handle -1 argument in
+ order to remove a workaround in Nautilus that forced
+ GTK_ENABLE_BROKEN
+
+ * gtk/gtkwidget.c (gtk_widget_modify_style): fix typos in the docs
+
Thu Nov 1 20:09:31 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkrange.c: Patch from George Lebl to
+2001-11-01 Havoc Pennington <hp@pobox.com>
+
+ * gtk/gtktext.c (gtk_text_set_position): handle -1 argument in
+ order to remove a workaround in Nautilus that forced
+ GTK_ENABLE_BROKEN
+
+ * gtk/gtkwidget.c (gtk_widget_modify_style): fix typos in the docs
+
Thu Nov 1 20:09:31 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkrange.c: Patch from George Lebl to
+2001-11-01 Havoc Pennington <hp@pobox.com>
+
+ * gtk/gtktext.c (gtk_text_set_position): handle -1 argument in
+ order to remove a workaround in Nautilus that forced
+ GTK_ENABLE_BROKEN
+
+ * gtk/gtkwidget.c (gtk_widget_modify_style): fix typos in the docs
+
Thu Nov 1 20:09:31 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkrange.c: Patch from George Lebl to
+2001-11-01 Havoc Pennington <hp@pobox.com>
+
+ * gtk/gtktext.c (gtk_text_set_position): handle -1 argument in
+ order to remove a workaround in Nautilus that forced
+ GTK_ENABLE_BROKEN
+
+ * gtk/gtkwidget.c (gtk_widget_modify_style): fix typos in the docs
+
Thu Nov 1 20:09:31 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkrange.c: Patch from George Lebl to
gint position)
{
GtkText *text = (GtkText *) old_editable;
+
+ if (position < 0)
+ position = gtk_text_get_length (text);
undraw_cursor (text, FALSE);
text->cursor_mark = find_mark (text, position);
* @style: the #GtkRcStyle holding the style modifications
*
* Modify style values on the widget. Modifications made using this
- * technique take precendence over style values set via an RC file,
+ * technique take precedence over style values set via an RC file,
* however, they will be overriden if a style is explicitely set on
* the widget using gtk_widget_set_style(). The #GtkRcStyle structure
* is designed so each field can either be set or unset, so it is
* make your modifications to the returned style, then call
* gtk_widget_modify_style() with that style. On the other hand,
* if you first call gtk_widget_modify_style(), subsequent calls
- * to such functions gtk_widget_modify_fg() will be have a cumulative
- * effect with the inital modifications.
+ * to such functions gtk_widget_modify_fg() will have a cumulative
+ * effect with the initial modifications.
**/
void
gtk_widget_modify_style (GtkWidget *widget,